home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-05-20 | 463 b | 29 lines | [TEXT/MPS ] |
- {Written by Nicholas Pisarro, Jr., Aperture Technologies, Inc.
- No rights reserved.}
-
- PROGRAM VirusCheckApp;
-
- USES
- {$LOAD}
- MemTypes, QuickDraw, OSIntf, ToolIntf, PackIntf, VirusCheck;
-
- CONST
- kAllOKAlertId = 1283;
-
- VAR
- dummy : INTEGER;
-
- BEGIN
- InitGraf(@thePort);
- InitFonts;
- InitWindows;
- InitMenus;
- TEInit;
- InitDialogs(NIL);
- InitCursor;
- IF ApplicationCanRun THEN
- BEGIN
- dummy := NoteAlert(kAllOKAlertId, NIL);
- {Application Main Body}
- END
- END.